
        :root {
            --primary-color: #307089;
            --secondary-color: #3FA3B9;
            --accent-color: #A7D8DE;
            --text-color: #191717;
            --bg-light: #f0f8ff;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            margin: 0;
            background: #f5f5f5;
        }

        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?w=800&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NHx8d29tZW4lMjBoZWFsdGh8ZW58MHx8MHx8fDA%3D');
            background-size: cover;
            background-position: center;
            padding: 80px 20px;
            text-align: center;
            color: #fff;
            position: relative;
        }

        .hero-section h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero-section p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 20px;
        }

        .hero-section .cta-btn {
            background: var(--secondary-color);
            color: #fff;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s, transform 0.2s;
        }

        .hero-section .cta-btn:hover {
            background: var(--primary-color);
            transform: scale(1.05);
        }

        main {
            max-width: 1000px;
            margin: 40px auto;
            padding: 30px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .sticky-cta {
            position: sticky;
            top: 20px;
            width: 280px;
            background: var(--bg-light);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            float: right;
            margin: 20px;
        }

        .sticky-cta h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .sticky-cta .tracker-btn {
            display: block;
            background: var(--secondary-color);
            color: #fff;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 10px;
            transition: background 0.3s, transform 0.2s;
        }

        .sticky-cta .tracker-btn:hover {
            background: var(--primary-color);
            transform: scale(1.05);
        }

        h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 20px;
        }

        .intro-text {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 30px;
            color: var(--text-color);
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
.poll-section {
      margin: 40px 0;
      text-align: center;
      background: var(--bg-light);
      padding: 25px;
      border-radius: 12px;
    }
    .poll-section h2 {
      font-size: 1.8rem;
      color: var(--primary-color);
      margin-bottom: 20px;
    }
    .poll-section select {
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #ddd;
      width: 300px;
      max-width: 100%;
      font-size: 1rem;
      margin-bottom: 15px;
    }
    .poll-section button {
      padding: 12px 24px;
      background: var(--secondary-color);
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: 600;
      transition: background 0.3s;
    }
    .poll-section button:hover {
      background: var(--primary-color);
    }
        .accordion-btn {
            background: var(--primary-color);
            color: #fff;
            cursor: pointer;
            padding: 15px 20px;
            width: 100%;
            text-align: left;
            border: none;
            outline: none;
            font-size: 1.2rem;
            margin-bottom: 10px;
            border-radius: 8px;
            transition: background 0.3s;
        }

        .accordion-btn:hover {
            background: var(--secondary-color);
        }

        .accordion-btn[aria-expanded="true"]::after {
            content: '\f077';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            float: right;
        }

        .accordion-btn[aria-expanded="false"]::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            float: right;
        }

        .accordion-content {
            background: #fff;
            border-radius: 8px;
            margin-bottom: 15px;
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        }

        .accordion-content.active {
            max-height: 1200px;
            padding: 20px;
        }

        .accordion-content img {
            width: 100%;
            max-height: 350px;
            object-fit: cover;
            border-radius: 8px;
            margin: 15px 0;
        }

        .accordion-content p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .accordion-content ul {
            margin-left: 20px;
            list-style-type: disc;
            margin-bottom: 15px;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
            color: var(--secondary-color);
        }

        .categories-box {
            background: var(--bg-light);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
        }

        .categories-box .title {
            font-size: 1.6rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .category-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 15px;
        }

        .category-list a {
            font-size: 1rem;
            color: var(--primary-color);
            padding: 12px;
            background: #fff;
            border-radius: 8px;
            text-decoration: none;
            transition: background 0.3s, transform 0.2s;
            text-align: center;
        }

        .category-list a:hover {
            background: var(--accent-color);
            transform: scale(1.03);
            text-decoration: none;
        }

        .trending-section {
            margin: 40px 0;
        }

        .trending-section h2 {
            font-size: 2rem;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 25px;
        }

        .trending-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
        }

        .trending-list li {
            background: var(--bg-light);
            padding: 20px;
            border-radius: 12px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .trending-list li:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .trending-list li h3 {
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .newsletter-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            margin: 40px 0;
        }

        .newsletter-section h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .newsletter-section input {
            padding: 12px;
            border-radius: 8px;
            border: none;
            margin: 10px 0;
            width: 300px;
            max-width: 100%;
            font-size: 1rem;
        }

        .newsletter-section button {
            padding: 12px 24px;
            background: #fff;
            color: var(--primary-color);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: background 0.3s, color 0.3s;
        }

        .newsletter-section button:hover {
            background: var(--accent-color);
            color: var(--text-color);
        }

        .social-share {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }

        .social-share a {
            color: var(--primary-color);
            font-size: 1.8rem;
            transition: color 0.3s, transform 0.2s;
        }

        .social-share a:hover {
            color: var(--secondary-color);
            transform: scale(1.1);
        }

        .affiliate-section {
            background: var(--bg-light);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            text-align: center;
        }

        .affiliate-section h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .affiliate-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .affiliate-item {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .affiliate-item:hover {
            transform: translateY(-5px);
        }

        .affiliate-item img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .affiliate-item h3 {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .affiliate-item p {
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .affiliate-item a {
            display: inline-block;
            background: var(--secondary-color);
            color: #fff;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }

        .affiliate-item a:hover {
            background: var(--primary-color);
            text-decoration: none;
        }

        .testimonial-section {
            margin: 40px 0;
            text-align: center;
        }

        .testimonial-section h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .testimonial {
            background: var(--bg-light);
            padding: 20px;
            border-radius: 8px;
            max-width: 600px;
            margin: 20px auto;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .testimonial p {
            font-style: italic;
            margin-bottom: 10px;
        }

        .testimonial cite {
            font-weight: 600;
            color: var(--secondary-color);
        }

        .video-section {
            margin: 40px 0;
            text-align: center;
        }

        .video-section h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .video-section iframe {
            width: 100%;
            max-width: 560px;
            height: 315px;
            border-radius: 8px;
        }

        @media screen and (max-width: 900px) {
            .hero-section h1 {
                font-size: 2.2rem;
            }

            .hero-section p {
                font-size: 1rem;
            }

            .sticky-cta {
                float: none;
                width: 100%;
                margin: 20px 0;
            }

            .trending-list {
                grid-template-columns: 1fr;
            }

            .affiliate-grid {
                grid-template-columns: 1fr;
            }

            .newsletter-section input {
                width: 100%;
            }

            main {
                margin: 20px;
                padding: 20px;
            }
        }

        @media screen and (max-width: 600px) {
            .hero-section {
                padding: 50px 15px;
            }

            .hero-section h1 {
                font-size: 1.8rem;
            }

            .category-list {
                grid-template-columns: 1fr;
            }

            .video-section iframe {
                height: 200px;
            }
        }

        affiliate-section {
            background: var(--bg-light);
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
        }

        .affiliate-section h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }

        .affiliate-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .affiliate-item {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .affiliate-item:hover {
            transform: translateY(-5px);
        }

        .affiliate-item img {
            width: 100%;
            height: 150px;
            object-fit: contain;
            margin-bottom: 15px;
        }

        .affiliate-item h3 {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .affiliate-item p {
            font-size: 1rem;
            margin-bottom: 15px;
        }

        .affiliate-item a {
            display: inline-block;
            background: var(--secondary-color);
            color: #fff;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }

        .affiliate-item a:hover {
            background: var(--primary-color);
        }

        .comments-section {
            margin-top: 40px;
            padding: 20px;
            background: var(--bg-light);
            border-radius: 8px;
        }

        .comments-section h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .comment-form input,
        .comment-form textarea {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .comment-form button {
            padding: 12px;
            background: var(--secondary-color);
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }

        .comment-form button:hover {
            background: var(--primary-color);
        }
   